ci: add NuGet cache to build and build-msix jobs#139
Closed
Conversation
Agent-Logs-Url: https://github.com/openclaw/openclaw-windows-node/sessions/42a64d5c-f7b3-41c3-9c60-79510c30d886 Co-authored-by: shanselman <2892+shanselman@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add NuGet cache to build and build-msix CI jobs
ci: add NuGet cache to build and build-msix jobs
Apr 2, 2026
Collaborator
|
Superseded by PR #140 (merged). |
9 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
buildandbuild-msixjobs were runningdotnet restorewith no caching, downloading packages fresh on every run. Thetestjob already usesactions/cache@v4with anuget-{os}-{csproj-hash}key — adding the same step to the other two jobs lets all matrix runners share the cache.Changes
buildjob: addedactions/cache@v4beforedotnet restorebuild-msixjob: addedactions/cache@v4beforedotnet restoreCache configuration (identical to
testjob):Cache is keyed on
.csprojcontent hash, so stale cache on dependency changes is handled automatically.